GNSS RTK 3 EA Click
GNSS RTK 3 EA Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : Stefan Filipovic
- Date : Sep 2023.
- Type : UART/I2C type
Software Support
Example Description
This example demonstrates the use of GNSS RTK 3 EA Click by reading and displaying the GNSS coordinates.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.GNSSRTK3EA
Example Key Functions
- gnssrtk3ea_cfg_setup Config Object Initialization function.
void gnssrtk3ea_cfg_setup(gnssrtk3ea_cfg_t *cfg)
GNSS RTK 3 EA configuration object setup function.
GNSS RTK 3 EA Click configuration object.
Definition gnssrtk3ea.h:200
- gnssrtk3ea_init Initialization function.
struct gnssrtk3ea_s gnssrtk3ea_t
GNSS RTK 3 EA Click context object.
err_t gnssrtk3ea_init(gnssrtk3ea_t *ctx, gnssrtk3ea_cfg_t *cfg)
GNSS RTK 3 EA initialization function.
- gnssrtk3ea_enable_device This function enables the device by setting the CEN pin to high logic state.
void gnssrtk3ea_enable_device(gnssrtk3ea_t *ctx)
GNSS RTK 3 EA enable device function.
- gnssrtk3ea_generic_read This function reads a desired number of data bytes by using UART or I2C serial interface.
err_t gnssrtk3ea_generic_read(gnssrtk3ea_t *ctx, uint8_t *data_out, uint16_t len)
GNSS RTK 3 EA data reading function.
- gnssrtk3ea_parse_gga This function parses the GGA data from the read response buffer.
err_t gnssrtk3ea_parse_gga(uint8_t *rsp_buf, uint8_t gga_element, uint8_t *element_data)
GNSS RTK 3 EA parse GGA function.
Application Init
Initializes the driver and enables the Click board.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
@ GNSSRTK3EA_OK
Definition gnssrtk3ea.h:229
#define GNSSRTK3EA_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition gnssrtk3ea.h:140
void application_init(void)
Definition main.c:78
Application Task
Reads the received data, parses the NMEA GGA info from it, and once it receives the position fix it will start displaying the coordinates on the USB UART.
{
{
gnssrtk3ea_parser_application( app_buf );
}
}
void application_task(void)
Definition main.c:110
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.